home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / getdirentries.c < prev    next >
C/C++ Source or Header  |  1988-07-29  |  1KB  |  66 lines

  1. /* 
  2.  * getdirentries.c --
  3.  *
  4.  *    Procedure to map from Unix getdirentries system call to Sprite.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: getdirentries.c,v 1.2 88/07/29 17:39:29 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "fs.h"
  16.  
  17. #include "compatInt.h"
  18.  
  19.  
  20. /*
  21.  *----------------------------------------------------------------------
  22.  *
  23.  * getdirentries --
  24.  *
  25.  *    Procedure to map from Unix getdirentries system call to Sprite 
  26.  *    Fs_?.
  27.  *
  28.  *    This routine does not fully implement the getdirentries
  29.  *    semantics. It does enough to keep the readdir library routine
  30.  *    happy.
  31.  *
  32.  * Results:
  33.  *    amount read     - if the call was successful.
  34.  *    UNIX_ERROR     - the call was not successful. 
  35.  *              The actual error code stored in errno.  
  36.  *
  37.  * Side effects:
  38.  *    None.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43.     /* ARGSUSED */
  44. int
  45. getdirentries(fd, buf, nbytes, basep)
  46.     int  fd;
  47.     char *buf;
  48.     int nbytes;
  49.     long *basep;
  50. {
  51.     ReturnStatus status;    /* result returned by Fs_Read */
  52.     int    amountRead;
  53.  
  54.     /*
  55.      * Read an entry in the directory specified by fd.
  56.      */
  57.  
  58.     status = Fs_Read(fd, nbytes, buf, &amountRead);
  59.     if (status != SUCCESS) {
  60.     errno = Compat_MapCode(status);
  61.     return(UNIX_ERROR);
  62.     } else {
  63.     return(amountRead);
  64.     }
  65. }
  66.